home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / comnumb.exe / RTST.MAK < prev   
Text File  |  1992-05-01  |  746b  |  55 lines

  1. .AUTODEPEND
  2.  
  3. #        *Translator Definitions*
  4. CC = bcc +RTST.CFG
  5. TASM = TASM
  6. TLIB = tlib
  7. TLINK = tlink
  8. LIBPATH = D:\BCWIN\LIB
  9. INCLUDEPATH = D:\BCWIN\INCLUDE
  10.  
  11.  
  12. #        *Implicit Rules*
  13. .c.obj:
  14.   $(CC) -c {$< }
  15.  
  16. .cpp.obj:
  17.   $(CC) -c {$< }
  18.  
  19. #        *List Macros*
  20.  
  21.  
  22. EXE_dependencies =  \
  23.  rtst.obj \
  24.  rational.obj
  25.  
  26. #        *Explicit Rules*
  27. rtst.exe: rtst.cfg $(EXE_dependencies)
  28.   $(TLINK) /v/x/c/P-/L$(LIBPATH) @&&|
  29. c0s.obj+
  30. rtst.obj+
  31. rational.obj
  32. rtst
  33.         # no map file
  34. emu.lib+
  35. maths.lib+
  36. cs.lib
  37. |
  38.  
  39.  
  40. #        *Individual File Dependencies*
  41. rtst.obj: rtst.cfg rtst.cpp 
  42.  
  43. rational.obj: rtst.cfg rational.cpp 
  44.  
  45. #        *Compiler Configuration File*
  46. rtst.cfg: rtst.mak
  47.   copy &&|
  48. -v
  49. -w+
  50. -I$(INCLUDEPATH)
  51. -L$(LIBPATH)
  52. | rtst.cfg
  53.  
  54.  
  55.